Supported Model Types
Last Update: 2025/3/26
The Supported Model Types feature provides an API to retrieve the types of models supported by different manufacturers.
Endpoint
GET https://api.llmprovider.ai/api/model/enum
Request Headers
Header | Value |
---|---|
Content-Type | application/json |
Example Request
curl --location 'https://api.llmprovider.ai/api/model/enum'
Response
The API returns an list models in the requested format.
{
"data": {
"types": [
"llm",
"tts",
"stt",
"text2img",
"text2video",
"img2video",
"embedding"
],
"features": [
"tool-call",
"multi-tool-call",
"agent-thought",
"vision",
"stream-tool-call"
]
}
}